
/* Animation properties */
#container {
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.title h2 {
    text-align: center;
}

.timeline,
.timeline-horizontal {
    list-style: none;
    padding: 20px;
    position: relative;
}

    .timeline:before {
        top: 40px;
        bottom: 0;
        position: absolute;
        content: " ";
        width: 3px;
        background-color: #eeeeee;
        left: 50%;
        margin-left: -1.5px;
    }

    .timeline .timeline-item {
        margin-bottom: 20px;
        position: relative;
    }

        .timeline .timeline-item:before,
        .timeline .timeline-item:after {
            content: "";
            display: table;
        }

        .timeline .timeline-item:after {
            clear: both;
        }

        .timeline .timeline-item .timeline-badge {
            color: #fff;
            width: 54px;
            height: 54px;
            line-height: 52px;
            font-size: 22px;
            text-align: center;
            position: absolute;
            top: 18px;
            left: 50%;
            margin-left: -25px;
            background-color: #7c7c7c;
            border: 3px solid #ffffff;
            z-index: 100;
            border-top-right-radius: 50%;
            border-top-left-radius: 50%;
            border-bottom-right-radius: 50%;
            border-bottom-left-radius: 50%;
        }

            .timeline .timeline-item .timeline-badge i,
            .timeline .timeline-item .timeline-badge .fa,
            .timeline .timeline-item .timeline-badge .glyphicon {
                top: 2px;
                left: 0px;
            }

            .timeline .timeline-item .timeline-badge.primary {
                background-color: #1f9eba;
            }

            .timeline .timeline-item .timeline-badge.info {
                background-color: #EC9959;
                ;
            }

            .timeline .timeline-item .timeline-badge.success {
                background-color: #59ba1f;
            }

            .timeline .timeline-item .timeline-badge.warning {
                background-color: #d1bd10;
            }

            .timeline .timeline-item .timeline-badge.danger {
                background-color: #ba1f1f;
            }

        .timeline .timeline-item .timeline-panel {
            position: relative;
            width: 46%;
            float: left;
            right: -4px;
            border: 1px solid #c0c0c0;
            background: #ffffff;
            border-radius: 2px;
            padding: 20px;
            -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
        }

            .timeline .timeline-item .timeline-panel:before {
                position: absolute;
                top: 26px;
                right: -16px;
                display: inline-block;
                border-top: 16px solid transparent;
                border-left: 16px solid #c0c0c0;
                border-right: 0 solid #c0c0c0;
                border-bottom: 16px solid transparent;
                content: " ";
            }

            .timeline .timeline-item .timeline-panel .timeline-title {
                margin-top: 0;
                color: inherit;
            }

            .timeline .timeline-item .timeline-panel .timeline-body > p,
            .timeline .timeline-item .timeline-panel .timeline-body > ul {
                margin-bottom: 0;
            }

                .timeline .timeline-item .timeline-panel .timeline-body > p + p {
                    margin-top: 5px;
                }

        .timeline .timeline-item:last-child:nth-child(even) {
            float: right;
        }

        .timeline .timeline-item:nth-child(even) .timeline-panel {
            float: right;
            left: 16px;
        }

            .timeline .timeline-item:nth-child(even) .timeline-panel:before {
                border-left-width: 0;
                border-right-width: 14px;
                left: -14px;
                right: auto;
            }

.timeline-horizontal {
    list-style: none;
    position: relative;
    padding: 20px 0px 20px 0px;
    display: inline-block;
}

    .timeline-horizontal:before {
        height: 3px;
        top: auto;
        bottom: 26px;
        left: 56px;
        right: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .timeline-horizontal .timeline-item {
        display: table-cell;
        height: 280px;
        width: 20%;
        min-width: 320px;
        float: none !important;
        padding-left: 0px;
        padding-right: 20px;
        margin: 0 auto;
        vertical-align: bottom;
    }

        .timeline-horizontal .timeline-item .timeline-panel {
            top: auto;
            bottom: 50px;
            display: inline-block;
            float: none !important;
            left: 0 !important;
            right: 0 !important;
            width: 100%;
            margin-bottom: 20px;
        }

            .timeline-horizontal .timeline-item .timeline-panel:before {
                top: auto;
                bottom: -17px;
                left: 117px !important;
                right: auto;
                border-right: 16px solid transparent !important;
                border-top: 16px solid #c0c0c0 !important;
                border-bottom: 0 solid #c0c0c0 !important;
                border-left: 16px solid transparent !important;
            }

        .timeline-horizontal .timeline-item:before,
        .timeline-horizontal .timeline-item:after {
            display: none;
        }

        .timeline-horizontal .timeline-item .timeline-badge {
            top: auto;
            bottom: 0px;
            left: 132px;
        }





/*start buttons section*/
.menu-section {
}

.button-m {
    border-radius: 4px;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 7px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 16px;
}

    .button-m span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
        font-size: 25px font-family:'cairo', sans-serif;
        font-weight: bold;
    }

        .button-m span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .button-m:hover span {
        padding-right: 25px;
    }

        .button-m:hover span:after {
            opacity: 1;
            right: 0;
        }

    .button-m:hover {
        color: #FFF;
    }

.success {
    background-color: #50A1D5;
}
    /* Green */
    .success:hover {
        background-color: #50A1D5;
    }

.info {
    background-color: #E58B4A;
}
    /* Blue */
    .info:hover {
        background: #E58B4A;
    }

.warning {
    background-color: #154373;
}
    /* Orange */
    .warning:hover {
        background: #154373;
    }

.danger {
    background-color: #f44336;
}
    /* Red */
    .danger:hover {
        background: #f44336;
    }

.default {
    background-color: #e7e7e7;
    color: black;
}
    /* Gray */
    .default:hover {
        background: #ddd;
    }

/*End buttons section*/

/*start slider section*/
header.carousel {
    height: 50%;
}

    header.carousel .item,
    header.carousel .item.active,
    header.carousel .carousel-inner {
        height: 100%;
    }

    header.carousel .fill {
        width: 100%;
        height: 500px;
        background-position: center;
        background-size: cover;
    }

#myCarousel {
    position: relative;
    z-index: 999;
    width: 1080px;
    margin: 0 auto;
    margin-top: 0px;
    clear: both;
    margin-top: -12px;
}

.slider {
    padding-top: 18px;
}

.carousel-indicators .active {
    width: 14px;
    height: 14px;
}

.carousel-indicators li {
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
}
/*End slider section*/



/*Start timeline party section*/

.party {
    padding-top: 94px;
    background-color: #f0f4f7;
    margin-top: 0px;
}

/*End timeline party section*/


/*Start testmonials carousel section*/


.testmonials-section {
    padding-top: 94px;
    background: linear-gradient(#55b4d4, #efefef);
}

.wow {
    visibility: visible;
}

/* carousel */
.media-carousel {
    margin-bottom: 0;
    padding: 0 40px 30px 40px;
    margin-top: 30px;
    width: 50%;
    margin-right: 385px;
}
    /* Previous button  */
    .media-carousel .carousel-control.left {
        left: -12px;
        background-image: none;
        background: none repeat scroll 0 0 #222222;
        border: 4px solid #FFFFFF;
        border-radius: 23px 23px 23px 23px;
        height: 40px;
        width: 40px;
        margin-top: 30px;
    }
    /* Next button  */
    .media-carousel .carousel-control.right {
        right: -12px !important;
        background-image: none;
        background: none repeat scroll 0 0 #222222;
        border: 4px solid #FFFFFF;
        border-radius: 23px 23px 23px 23px;
        height: 40px;
        width: 40px;
        margin-top: 30px;
    }
    /* Changes the position of the indicators */
    .media-carousel .carousel-indicators {
        right: 50%;
        top: auto;
        bottom: 0px;
        margin-right: -19px;
    }
        /* Changes the colour of the indicators */
        .media-carousel .carousel-indicators li {
            background: #c0c0c0;
            border: 2px solid #fff;
        }

        .media-carousel .carousel-indicators .active {
            background: #333333;
        }

    .media-carousel img {
        width: 250px;
        height: 100px
    }
/* End carousel */

/*End testmonials carousel section*/

/*===== Vertical Timeline =====*/

.verticaltimeline-section {
    padding-top: 40px;
}

.h {
    width: 100%;
    height: 40px;
    position: relative;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 30px;
}

    .h span {
        display: block;
        width: 250px;
        height: 44px;
        line-height: 44px;
        font-size: 36px;
        color: #323232;
        position: absolute;
        left: 50%;
        margin-left: -125px;
        top: 20px;
        text-align: center;
        background: #fff;
    }

        .h span:hover {
            color: #C30;
        }

.agenda {
    background: #fff url("../images/content_bg.png") repeat-x top;
}

#conference-timeline {
    position: relative;
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    padding-top: 196px;
}

    #conference-timeline .timeline-start,
    #conference-timeline .timeline-end {
        display: table;
        font-family: "Roboto", sans-serif;
        font-size: 18px;
        font-weight: 900;
        text-transform: uppercase;
        padding: 9px 23px;
        color: #fff;
        max-width: 5%;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

.timeline-end {
}

.timeline-start img {
    margin-right: 88px;
}

#conference-timeline .conference-center-line {
    /*  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: 3px;
  background: #3b93d0;*/
    position: absolute;
    width: 3px;
    top: 279px;
    height: 1011px;
    left: 50%;
    margin-left: 2px;
    background: #3b93d0;
}

#conference-timeline .conference-timeline-content {
    padding-top: 20px;
    padding-bottom: 67px;
}

.timeline-article {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

    .timeline-article:hover { /*box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.15);
 transform: translate3d(-20px, -20px, 0);
 transition: 0.5s ease all;*/
    }

    .timeline-article .content-left-container,
    .timeline-article .content-right-container {
        max-width: 44%;
        width: 100%;
    }

    .timeline-article .timeline-author {
        display: block;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #242424;
        text-align: right;
    }

    .timeline-article .content-left,
    .timeline-article .content-right {
        position: relative;
        width: auto;
        border: 1px solid #ddd;
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,.03);
        padding: 27px 25px;
    }

    .timeline-article p {
        margin: 0 0 0 60px;
        padding: 0;
        font-weight: 400;
        color: #1277bf;
        font-size: 15px;
        line-height: 24px;
        position: relative;
        font-family: "JF Flat Regular";
        text-align: justify;
        font-weight: bold;
    }

    .timeline-article img {
        margin-right: 78px;
    }

    .timeline-article p span.article-number {
        position: absolute;
        font-weight: 300;
        font-size: 44px;
        top: 10px;
        left: -60px;
        color: #3b93d0;
        ;
    }

    .timeline-article .content-left-container {
        float: left;
    }

        .timeline-article .content-left-container:hover {
            float: left;
            box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.15);
            transform: translate3d(-20px, -20px, 0);
            transition: 0.5s ease all;
        }

    .timeline-article .content-right-container {
        float: right;
    }

        .timeline-article .content-right-container:hover {
            float: right;
            box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.15);
            transform: translate3d(-20px, -20px, 0);
            transition: 0.5s ease all;
            /*border: 1px solid #ddd;*/
        }

    .timeline-article .content-left:before,
    .timeline-article .content-right:before {
        position: absolute;
        top: 20px;
        font-size: 23px;
        font-family: "FontAwesome";
        color: #fff;
    }

    .timeline-article .content-left:before {
        content: "\f0da";
        right: -8px;
    }

    .timeline-article .content-right:before {
        content: "\f0d9";
        left: -8px;
    }

    .timeline-article .meta-date {
        position: absolute;
        top: 0;
        left: 50%;
        width: 62px;
        height: 62px;
        margin-left: -27px;
        color: #fff;
        border-radius: 100%;
    }




        .timeline-article .meta-date .date,
        .timeline-article .meta-date .month {
            display: block;
            text-align: center;
            font-weight: 900;
        }

        .timeline-article .meta-date .date {
            font-size: 30px;
            line-height: 40px;
        }

        .timeline-article .meta-date .month {
            font-size: 18px;
            line-height: 10px;
        }

/*===== // Vertical Timeline =====*/

/*===== Resonsive Vertical Timeline =====*/
@media only screen and (max-width: 830px) {
    #conference-timeline .timeline-start,
    #conference-timeline .timeline-end {
        margin: 0;
    }

    #conference-timeline .conference-center-line {
        margin-left: 0;
        left: 50px;
    }

    .timeline-article .meta-date {
        margin-left: 0;
        left: 20px;
    }

    .timeline-article .content-left-container,
    .timeline-article .content-right-container {
        max-width: 100%;
        width: auto;
        float: none;
        margin-left: 110px;
        min-height: 53px;
    }

    .timeline-article .content-left-container {
        margin-bottom: 20px;
    }

    .timeline-article .content-left,
    .timeline-article .content-right {
        padding: 10px 25px;
        min-height: 65px;
    }

        .timeline-article .content-left:before {
            content: "\f0d9";
            right: auto;
            left: -8px;
        }

        .timeline-article .content-right:before {
            display: none;
        }
}

@media only screen and (max-width: 400px) {
    .timeline-article p {
        margin: 0;
    }

        .timeline-article p span.article-number {
            display: none;
        }
}
/*===== // Resonsive Vertical Timeline =====*/


/*Start t3dad section*/
.t3dad-section {
    padding-top: 87px;
    padding-top: 87px;
    /*background: url('../images/team.jpg') no-repeat center center fixed;*/
    /*background-color: rgb(19, 111, 143);*/
    background: #fff url(../images/content_bg.png) repeat-x top;
    */ margin-top: 0px;
    padding-bottom: 24px;
}
    /*.t3dad-section .info{background:rgba(2,2,2,0.8);color:#FFF;min-height:600px}*/
    .t3dad-section .cuadro_intro_hover {
        padding: 0px;
        position: relative;
        overflow: hidden;
        height: 200px;
        background-color: #FFF;
    }

        .t3dad-section .cuadro_intro_hover:hover .caption {
            opacity: 1;
            transform: translateY(-150px);
            -webkit-transform: translateY(-150px);
            -moz-transform: translateY(-150px);
            -ms-transform: translateY(-150px);
            -o-transform: translateY(-150px);
        }

        .t3dad-section .cuadro_intro_hover img {
            z-index: 4;
        }

        .t3dad-section .cuadro_intro_hover .caption {
            position: absolute;
            top: 150px;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            width: 100%;
        }

        .t3dad-section .cuadro_intro_hover .blur {
            background-color: rgba(0,0,0,0.7);
            height: 300px;
            z-index: 5;
            position: absolute;
            width: 100%;
        }

        .t3dad-section .cuadro_intro_hover .caption-text {
            z-index: 10;
            color: #fff;
            position: absolute;
            height: 300px;
            text-align: center;
            top: -20px;
            width: 100%;
        }

/*End t3dad section*/
.price_table {
    padding-top: 254px; /* padding-bottom: 38px; */
}

    .price_table .cuadro_intro_hover {
        padding: 0px;
        /* position: relative; */
        overflow: hidden;
        height: 220px;
        background-color: #FFF;
    }

    .price_table .caption-text a {
        position: absolute;
        font-size: 14px;
        /*font-family: "FontAwesome";*/
        color: #333;
        font-weight: bold;
        font-family: 'cairo', sans-serif;
    }

    .price_table .cuadro_intro_hover:hover .caption {
        opacity: 1;
        /*transform: translateY(-150px);
		-webkit-transform:translateY(-150px);
		-moz-transform:translateY(-150px);
		-ms-transform:translateY(-150px);
		-o-transform:translateY(-150px);*/
    }

    .price_table .cuadro_intro_hover img {
        /* z-index: 4; */
    }

    .price_table .cuadro_intro_hover .caption {
        position: absolute;
        top: 141px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        width: 100%;
    }

    .price_table .cuadro_intro_hover .blur {
        background-color: rgba(0,0,0,0.7);
        height: 268px;
        z-index: 5;
        position: absolute;
        width: 100%;
    }

    .price_table .cuadro_intro_hover .caption-text {
        z-index: 10;
        color: #fff;
        position: absolute;
        /* height: 300px; */
        text-align: center;
        top: -20px;
        /* max-width: 459px; */
        width: 100%;
    }



/*start agenda section*/

h1.agenda-title {
    font-size: 40px;
    font-family: 'cairo', sans-serif;
    font-weight: bold;
    text-align: center;
    margin-top: 119px;
}

h3.agenda-title {
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    padding: 10px;
    font-family: 'cairo', sans-serif;
}

/*End agenda section*/

.logo-section {
    margin-top: -67px;
}

.logo {
    width: 544px;
    text-align: center;
}

*
/*.logo{ width: 675px;
text-align: center;}*/
.logo img {
    margin-right: 234px;
    margin-top: 71px;
    width: 54%;
}
/*.logo img{   
 margin-right: -77px;
margin-top: 18px;
width:100%;
}*/




.left-div a {
    text-decoration: none;
}

.button_blue_image {
    text-decoration: none;
    float: left;
    display: block;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    font-family: 'DroidArabicKufiRegular',sans-serif;
    border: none;
    border-bottom: 3px solid #62abdb;
    padding: 10px 30px 7px 46px;
    background: url("../images/link.png") no-repeat scroll 19px 12px #62abdb;
    transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    -moz-transition: all .5s ease-in;
    -webkit-transition: all .5s ease-in;
    text-transform: uppercase;
    margin-left: -111px;
}

a:active, a:hover, a:focus {
    color: #fff;
    text-decoration: none;
}

/*page index5_new */
body {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
}

.header-part1 {
    background: url("../images/header_1.png") repeat-x center top;
    height: 0px;
    position: relative;
    z-index: 100;
}

header-part2 {
    background: url("../images/header_2.png") repeat-x;
    height: 40px;
    line-height: 40px;
    position: relative;
    z-index: 99;
}

.contentt {
    background: #fff url("../images/content_bg.png") repeat-x top;
    padding-top: 180px;
}

.menu { /* margin-top: 27px; */
    margin-left: 52px;
}

.nav {
    display: grid;
}

video {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.nav li {
}

    .nav li:hover {
    }

.nav > li > a:hover, .nav > li > a:focus {
    background-color: none;
}

.navbar-nav > li > a {
    margin-top: -30px;
}

.nav a:hover {
    transform: translate3d(-20px, -20px, 0);
    transition: 0.5s ease all;
}




.socials {
    direction: rtl;
    margin-bottom: 37px;
}

.social-media {
    overflow: hidden;
    padding-left: 0px;
    list-style: none;
    padding: 61px 0px 6px 39px;
}

    .social-media li {
        float: left;
        margin-right: 19px;
        opacity: 1;
        filter: alpha(opacity=70);
    }
/*	.fa {
 padding:  2px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
	padding-left: 20px;
}*/
/*.fa:hover {
    opacity: 0.7;
}*/

.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-youtube {
    background: #bb0000;
    color: white;
}

.copyright_footer {
    width: 100%;
    background-color: #42484d;
    min-height: 67px;
    padding: 6px 0 0;
}

.content-footer {
    width: 980px;
    margin: 0 auto;
}

.copyrightmsg {
    font-size: 14px;
    color: #868a8d;
    font-family: 'cairo', sans-serif;
    text-align: center;
    margin-top: 8px;
}

    .copyrightmsg a {
        font-size: 16px;
        color: #59b3db;
        font-family: 'DroidArabicKufiRegular', sans-serif;
        text-decoration: underline;
    }

}

.social_icons {
    float: left;
    margin-left: -190px;
}

.social-media-footer {
    overflow: hidden;
    padding-left: 0px;
    list-style: none;
    padding: 3px 0px 6px 0px;
}

    .social-media-footer li {
        float: left;
        margin-right: 19px;
        opacity: 1;
        filter: alpha(opacity=70);
    }



.flip-container {
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -o-perspective: 1000;
    perspective: 1000;
    border: 1px solid #ccc;
}

    .flip-container:hover .flipper,
    .flip-container.hover .flipper {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

.flip-container, .front, .back {
    width: 320px;
    height: 203px;
}

.flipper {
    -webkit-transition: 0.8s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 0.8s;
    -moz-transform-style: preserve-3d;
    -o-transition: 0.8s;
    -o-transform-style: preserve-3d;
    transition: 0.8s;
    transform-style: preserve-3d;
    position: relative;
}

.front, .back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.front {
    background: url("../images/t3dad3.jpg") 0 0 no-repeat;
    z-index: 2;
}

.back {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    overflow: hidden;
    background-color: #005180;
    padding: 1em;
    color: #FFF;
    cursor: default;
}

}

.front .name {
    font-size: 2em;
    display: inline-block;
    background: rgba(33, 33, 33, 0.9);
    color: #f8f8f8;
    font-family: Courier;
    padding: 5px 10px;
    border-radius: 5px;
    bottom: 60px;
    left: 25%;
    position: absolute;
    text-shadow: 0.1em 0.1em 0.05em #333;
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
}

.back-logo {
    position: absolute;
    top: 40px;
    left: 90px;
    width: 160px;
    height: 117px;
    background: #005180;
}

.back-title {
    font-weight: bold;
    color: #00304a;
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    text-align: center;
    text-shadow: 0.1em 0.1em 0.05em #acd7e5;
    font-family: Courier;
    font-size: 2em;
}

.back p {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 20px;
    font-family: arial;
    line-height: 2em;
}

.view-button {
    display: block;
    text-align: center;
    transition: all 1s;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    background: -moz-linear-gradient(top,rgba(0,81,128,0) 0%,#005180 100%);
    background: -webkit-linear-gradient(top,rgba(0,81,128,0) 0%,#005180 100%);
    background: linear-gradient(to bottom,rgba(0,81,128,0) 0%,#005180 100%);
}

.view-button-text {
    color: #FFF;
    background-color: #c0ae00;
    border: none;
    font-size: 100%;
    pointer-events: auto;
    padding: 0.5em 2em;
    margin-bottom: 2em;
    display: inline-block;
    transition: all 0.2s;
    text-transform: uppercase;
    box-shadow: 0.3em 0.3em 0px rgba(0,49,77,0.8);
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}


#scroll-top {
    width: 40px;
    height: 43px;
    color: #DDD;
    background-color: #3B93D0;
    ;
    text-align: center;
    position: fixed;
    right: 15px;
    bottom: -42px;
    ;
    z-index: 9999;
    display: none;
    cursor: pointer;
    margin-bottom: 40px;
    border-radius: 2px 2px 0 0;
    /*color: #fff;
z-index: 99;
width: 30px;
height: 30px;
font-size: 20px;
background: #59b3db;
position: relative;
right: 14px !important;
bottom: 11px !important;
border-radius: 3px !important*/
}

    #scroll-top:hover {
        background-color: #444
    }

.t3dad2 {
    height: 720px;
}

.t3dad-p {
    font-size: 25px;
    font-family: 'cairo', sans-serif;
    font-weight: bold;
    text-align: center;
}

.item1 {
    background: url("../images/index-tease-what-bw-md.jpg") 0 0 no-repeat;
    z-index: 2;
    height: 598px;
}

.mbr-footer-content .mbr-contacts__text strong {
    font-size: 22px;
    text-align: center;
    margin: 0 0 30px;
    color: #fff;
    font-family: 'cairo', sans-serif;
}

.mbr-footer-content h6 {
    font-size: 20px;
    margin: 0 0 30px;
    color: #fff;
    font-family: 'cairo', sans-serif
}

.mbr-footer-content a {
    font-size: 18px;
    margin: 0 0 30px;
    color: #fff;
    font-family: 'cairo', sans-serif
}

    .mbr-footer-content a:hover {
        color: #fff;
        font-size: 18px;
        margin: 0 0 30px;
        color: #fff;
        font-family: 'cairo', sans-serif
    }

.mbr-footer-content hr {
    width: 262px;
    opacity: 0.5;
}

.mbr-footer-content ul li {
    list-style-type: none;
}

.mbr-footer-content ul li {
    border-bottom: 1px solid #7e8c8f;
    list-style-type: none;
    padding-bottom: 5px;
    text-align: right !important;
    text-decoration: none;
}

    .mbr-footer-content ul li a {
        color: #c0a375;
        text-decoration: none;
        font-size: 17px;
    }

        .mbr-footer-content ul li a:hover {
            color: #ffffff;
            text-decoration: none;
            font-size: 17px;
        }

.price_box {
    background: url("../images/كتاب النتائج 12017.png") 0 0 no-repeat;
    padding: 57px;
    border: 1px solid #DDD;
    margin-bottom: 15px;
    height: 280px;
    background-color: #fff;
}

.prics_box p {
    font-family: 'cairo',sans-serif;
    font-size: 20px;
    color: #666;
    line-height: 42px;
    border: 2px solid #FFF;
    text-align: justify;
}

.price_table .p2 {
    padding-top: 10px;
}

.price_table .matt { /* width: 243px; */ /* text-align: center; */
}

.price_table .matt2 {
    width: 318px;
}

.price_table .matt3 {
    width: 318px;
}

#navlist ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#navlist li {
    display: inline;
}

.col-lg-3 {
    width: 19.333%;
    ;
}

.page-title {
    font-size: 34px;
    font-family: 'cairo', sans-serif;
    font-weight: bold;
    text-align: center;
    margin-top: -6px;
    color: #203f72;
    padding-top: 54px;
}
/*.mbr-arrow {bottom: 48px;
left: 0;
position: absolute;
text-align: center;
width: 100%;}

.mbr-arrow-floating .mbr-arrow-icon {
    -webkit-animation: floating-arrow 1.6s infinite ease-in-out 0s;
    animation: floating-arrow 1.6s infinite ease-in-out 0s; }
*/
@media(min-width: 1200px) {
    .imgr {
        margin-left: -175px;
        padding-right: 180px !important;
        margin-top: 24px;
    }
}

@media(min-width:768px)and (max-width:1199px) {
    .price_table .matt {
        width: 235px; /* text-align: center; */
    }

    .imgr {
        margin-left: -262px;
        margin-right: 1px !important;
        margin-top: 0px;
        padding-left: -168px;
    }
}
